diff options
| author | real-zephex <[email protected]> | 2024-04-07 12:53:56 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-07 12:53:56 +0000 |
| commit | 6c4f28aa4166fae78a450b3fc46b5f3f4be9fd92 (patch) | |
| tree | 9ddac3f4b350d34c34cd2679c6c5c9bfb8ae4ca3 /src/app/manga/[title]/[id]/[read] | |
| parent | Merge pull request #3 from real-zephex/kdrama-section-rewrite (diff) | |
| download | dramalama-6c4f28aa4166fae78a450b3fc46b5f3f4be9fd92.tar.xz dramalama-6c4f28aa4166fae78a450b3fc46b5f3f4be9fd92.zip | |
cloudflare fix
Diffstat (limited to 'src/app/manga/[title]/[id]/[read]')
| -rw-r--r-- | src/app/manga/[title]/[id]/[read]/page.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx index eaaa94c..ce433e2 100644 --- a/src/app/manga/[title]/[id]/[read]/page.jsx +++ b/src/app/manga/[title]/[id]/[read]/page.jsx @@ -3,6 +3,8 @@ import Image from "next/image"; import DownloadManga from "./download"; import CurrentReading from "./currentReading"; +export const runtime = "edge"; + export default async function Read({ params }) { const chapterId = params.read; const data = await getPages(chapterId); |